summaryrefslogtreecommitdiffstats
path: root/typescript/src/EntrypointParameter.ts
blob: f78f1fc8072e38aea25afcb25226de35fb95345a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: AGPL-3.0-or-later */

export default EntrypointParameter;

type EntrypointParameter = Readonly<{
  input: string;
  i2d?: true;
  podstate: Readonly<
    ["Step-by-step solution", "Step-by-step", "Show all steps", string?]
  >;
}>;